home *** CD-ROM | disk | FTP | other *** search
- /*
- * nets.h
- *
- * Copyright (c) 1996 Systems Architecture Research Centre,
- * City University, London, UK.
- *
- * See the file "license.terms" for information on usage and redistribution
- * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
- */
-
- #ifndef __nets_h
- #define __nets_h
-
- #include <errno.h>
-
- #define MAXHOSTNAME 128
-
- #define SYS_ERROR (char*)sys_errlist[errno]
- #define SYS_HERROR (char*)hstrerror(h_errno)
-
- #endif
-